home *** CD-ROM | disk | FTP | other *** search
- -- card: 2917 from stack: in
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 2636
- -- name:
-
-
- -- part 1 (field)
- -- low flags: 00
- -- high flags: 0004
- -- rect: left=31 top=13 right=322 bottom=497
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 9
- -- style flags: 0
- -- line height: 10
- -- part name:
-
-
- -- part contents for card part 1
- ----- text -----
- --SCREEN SAVER FUNCTION FOR MAC II'S
- --My screen idle function. It is modeled after autoblack. Three
- --settings. If cursor is in lower right corner of the screen then
- --screen saver never comes on.
- --If it is in upper right corner then "Stars II" comes on immediately.
- --Otherwise, if system has been idle for more than 250sec then
- --"Stars II" comes on.
- --NOTE1: you have to supply your own screen saver program and install
- --it as a DA. Then just replace "Stars II" by whatever name yours
- --has on the apple-menu.
- --NOTE2: this will work for other Mac's as well, but is the only
- --such "auto" saver I have found for a Mac II.
- --NOTE3: to adjust time change the "15000" in line 7 up or down
- --according to your desires. Remember 60 ticks = 1 sec.
- --Enjoy: this is freeware. Simply give me credit by leaving this
- --message in the script for your home stack.
- -- Wayne D. Gray, 6116 Lee Brooke Place; Springfield, VA 22152
-
- on idle
- global holdticks
- if the mouseH > 500 and the mouseV > 340 then
- pass idle
- else if the mouseH > 500 and the mouseV < -15 then
- doMenu "Stars II"
- else if (the ticks-holdticks)> 15000 then
- put the ticks into holdticks
- doMenu "Stars II"
- end if
- pass idle
- end idle
-